runtime.memRecord.active (field)

17 uses

	runtime (current package)
		mprof.go#L132: 	active memRecordCycle
		mprof.go#L411: 		mp.active.add(mpc)
		mprof.go#L1025: 		if inuseZero || mp.active.alloc_bytes != mp.active.free_bytes {
		mprof.go#L1028: 		if mp.active.allocs != 0 || mp.active.frees != 0 {
		mprof.go#L1042: 				mp.active.add(&mp.future[c])
		mprof.go#L1046: 			if inuseZero || mp.active.alloc_bytes != mp.active.free_bytes {
		mprof.go#L1055: 			if inuseZero || mp.active.alloc_bytes != mp.active.free_bytes {
		mprof.go#L1057: 					AllocBytes:   int64(mp.active.alloc_bytes),
		mprof.go#L1058: 					FreeBytes:    int64(mp.active.free_bytes),
		mprof.go#L1059: 					AllocObjects: int64(mp.active.allocs),
		mprof.go#L1060: 					FreeObjects:  int64(mp.active.frees),
		mprof.go#L1102: 		fn(b, b.nstk, &b.stk()[0], b.size, mp.active.allocs, mp.active.frees)